home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-06 / bridge.zip / BRIDGE.TXT < prev   
Text File  |  1992-03-25  |  28KB  |  562 lines

  1.                             
  2.                             LAN Interconnection
  3.                             -------------------
  4.  
  5.  
  6. (C) 1992 ZyBel MicroSystems Inc.           March 19, 1992
  7.  
  8.  
  9. This file contains technical information about using LAN bridge and router
  10. products, and a discussion of application considerations.  It will focus on
  11. bridges being used to extend network length beyond the limits dictated by
  12. the type of media being utilized, and will also discuss bridging as a means
  13. of segmenting congested networks.
  14.  
  15. This information was compiled by ZyBel MicroSystems Inc., a software
  16. developer and reseller of Artisoft Lantastic products.  ZyBel would be
  17. happy to work with any resellers or end users who have bridging needs.
  18. Our address and phone number can be found at the end of this file.
  19.  
  20. The author will assume that the reader is familiar with basic LAN
  21. terminology and wiring standards.  The first section of this file contains
  22. detailed technical information regarding LAN interconnection.  The latter
  23. section details appropriate solutions for specific application problems.
  24.  
  25.  
  26.  
  27. 1.   LAN Interconnection - the technology explained.
  28.  
  29. 1.1  Wiring Standards.
  30.  
  31. The Artisoft Network Interface Cards (AE1, AE1, and AE3) all follow the
  32. Ethernet LAN standard.  These cards make available various types of network
  33. interfaces:
  34.  
  35.    AUI:      Attachment Unit Interface.  A point to point, short distance
  36.              digital interface which is usually used to connect to a LAN
  37.              transceiver, for attachment to a particular type of media.
  38.              This interface is most commonly used to access a 10Base5 (or
  39.              thick coaxial) network.
  40.  
  41.    10Base2:  Also called Thinnet or Cheapernet.  Specifies thin coax
  42.              (RG58), 10 Mb/s, with a maximum segment length of 185 Meters.
  43.              There can be up to 30 nodes per segment, and a total network
  44.              span of 925 Meters.
  45.  
  46.    10Base5:  Specifies thick coax cable, 10 Mb/s, with a maximum segment
  47.              length of 500 Meters.  There can be up to 100 nodes per
  48.              segment, and a total network span of 2500 Meters.  The
  49.              network interface card connects to an external transceiver
  50.              through an AUI interface.
  51.  
  52.    10BaseT:  Unshielded twisted pair wiring (UTP).  Runs at 10 Mb/s, with
  53.              a maximum segment length of 100 Meters, and a total network
  54.              span of 500 Meters.
  55.  
  56.  
  57. With the Ethernet standard, each network interface card is assigned a
  58. unique address by the manufacturer.  These addresses are used to identify
  59. the source and destination of information which is transmitted over the
  60. LAN.
  61.  
  62.  
  63. The term LAN "segment" refers to a contiguous length of media between two
  64. network terminations.  In the case of 10Base2 and 10Base5, many devices can
  65. be attached to a single segment.  In the case of 10BaseT, each segment
  66. supports only two devices - one at either end.
  67.  
  68. Segments can be joined together to form larger and more complex networks
  69. that exceed the single segment distance limitations.  There are three basic
  70. devices which can be used to join LAN segments - repeaters, bridges, and
  71. routers.
  72.  
  73.  
  74. 1.2  Repeaters
  75.  
  76. A repeater can be thought of as two Ethernet transceivers connected back-
  77. to-back.  Any signal received on one LAN segment is immediately transmitted
  78. on the other segment.  The repeater amplifies and regenerates the signal,
  79. but is transparent to both segments.  Thus the function of a repeater can
  80. be thought of as creating one large LAN out of smaller segments.
  81. Collisions will occur if two stations, each on a different segment,
  82. transmit at the same time.  The only real purpose of a repeater is to
  83. extend the physical length of the LAN, or to join two different types of
  84. media (10Base5 to 10Base2 for example).  Ethernet specifies a maximum of 4
  85. repeaters between any two stations (thus allowing up to 5 segments in a
  86. single LAN).  There are also multi-port repeaters, which transmit incoming
  87. signals on all other segments (thereby increasing the maximum cabling
  88. length of the network, while still complying with a maximum of 4 repeaters
  89. between any two stations).  A 10BaseT wiring hub is essentially a multi-
  90. port repeater.
  91.  
  92. It is important that no "loops" be created when installing repeaters.
  93. Since repeaters re-transmit everything that is received, a "loop" (in which
  94. a circular path is formed for the data) will cause data to be repeated
  95. forever, essentially killing the network.  This effect is known as a data
  96. storm.
  97.  
  98.  
  99. 1.3  Bridging
  100.  
  101. A bridge operates quite differently from a repeater.  Before bridging is
  102. discussed in any significant detail, a review of LAN architecture is
  103. required.  The ISO (International Organization for Standardization) created
  104. an overall communications structure (or architecture) in 1977 called OSI,
  105. or Open Systems Interconnection model.  The OSI model was meant to
  106. standardize the way in which LANs were architected, and allow for inter-
  107. operation between various types of LANs.  The OSI model consists of 7
  108. layers, each dealing with a different function required by the LAN system.
  109.  
  110.  
  111. 1.3.1     The OSI Reference Model
  112.  
  113. The Ethernet standard is based on work done by the IEEE Local Network
  114. Standards Committee (Project 802), and specifically on the 802.3 standard
  115. (which details CSMA/CD operation). Ethernet utilizes a layered approach
  116. similar to the OSI Reference Model.  Although a discussion of the OSI
  117. Reference Model is beyond the scope of this document, a brief examination
  118. of the lower three layers is necessary to fully understand bridging and
  119. routing.
  120.  
  121. 1.3.1.1   Layer 1: The Physical Layer
  122.  
  123. This layer is concerned with the physical characteristics of the network -
  124. for example, the signal voltage swing and timing, and mechanical,
  125. electrical and procedural details involved in a link.
  126.  
  127. 1.3.1.2   Layer 2: The Data Link Layer
  128.  
  129. Layer 2 is responsible for the reliable transfer of data across a physical
  130. link.  It communicates blocks of data (frames or packets) with necessary
  131. synchronization, error checking and flow control.
  132.  
  133. 1.3.1.3   Layer 3: The Network Layer
  134.  
  135. Provides the higher level software with independence from the underlying
  136. transmission and switching technologies, and is responsible for
  137. establishing, maintaining and terminating connections between entities.  As
  138. an example, the TCP/IP protocol is a layer 4 and layer 3 protocol (IP, or
  139. Internetworking Protocol is layer 3).  TCP/IP can be run over Ethernet, or
  140. on other types of networks.  Ethernet only deals with layers 1 and 2.
  141.  
  142.  
  143. 1.3.2     How a Bridge Works
  144.  
  145. A bridge is a device which interconnects LANs based on layer 2 information.
  146. That is, unlike a repeater, a bridge is not transparent to the LANs
  147. involved, and does not re-transmit all information detected on each LAN.
  148.  
  149. As an example, consider a bridge connected to two LANs, call them "A" and
  150. "B".  The bridge will appear as a device to both "A" and "B".  It will
  151. monitor traffic on each LAN, but only transmit packets destined for a
  152. device on the other LAN.  For instance, the bridge will only send packets
  153. from "A" to "B" if the packet is addressed to a device located outside of
  154. LAN "A".  The way the bridge determines the destination for a data packet
  155. is by examining the Layer 2 information.  Thus the bridge must "know" the
  156. structure of Layer 2 packets, and it can only interconnect LANS that have
  157. identical Layer 2 protocols.  Therefore, a bridge cannot be used to connect
  158. Token Ring to Ethernet.
  159.  
  160. It is important to note that the bridge actually receives the LAN data,
  161. buffers it, examines it, and then decides whether to forward the data or
  162. ignore it.  Should it decide to forward the data, it transmits it on the
  163. other LAN just as a local device would - it waits until the LAN is clear
  164. and then sends the information.  With this structure, the bridge actually
  165. operates on LAN "A" and LAN "B" independently - i.e. if LAN "A" is busy,
  166. the bridge can still transmit to LAN "B".  Similarly, if devices on "A" and
  167. "B" both transmit at the same time, there will NOT be a collision, since
  168. the information is not immediately forwarded to the other LAN.  The effect
  169. of this operation is to logically segment the two networks.  Information
  170. destined for a device on the same network will NOT be forwarded to the
  171. second LAN.  Thus, only traffic destined for the other LAN will be
  172. forwarded, and overall congestion on each LAN will be greatly reduced.
  173.  
  174. Because a bridge buffers the data, and must wait to forward packets to a
  175. second LAN, the data will take longer to reach its eventual destination
  176. than if the bridge were not present.  However, since the bridge actually
  177. receives the data, stores the information, and then re-transmits the data
  178. on another LAN as if it was the originator, the rule about segments and
  179. repeaters does not hold true.  There can be virtually any number of bridges
  180. between two network devices (obviously within practical limits).
  181.  
  182. The higher software layers (layers 3 and 4, the Network and Transport
  183. layers) of the OSI Reference Model are responsible for managing end-to-end
  184. connections.  They ensure that data is delivered in an orderly fashion
  185. without errors, and that flow control is implemented as required.  Because
  186. bridges introduce delays in data reaching its destination, the higher layer
  187. protocols must be able to tolerate these additional delays.
  188.  
  189. Now that we understand what a bridge does, we should understand why someone
  190. would utilize a bridge.  There are basically four reasons for utilizing a
  191. bridging device:
  192.  
  193.   a). To isolate portions of the network and therefore provide better
  194.       reliability.  With a bus topology (10Base2 and 10Base5), a failure      
  195.       in any device on the bus can bring down the entire LAN.  By
  196.       inserting bridges between LAN segments, other segments are not
  197.       affected by a failure.
  198.  
  199.   b). To increase network performance by segmentation of the network.  If
  200.       there are two LANs, and one is used primarily for an accounting
  201.       system, and the other primarily for an order entry system, it would
  202.       slow both LANs considerably if all packets were transmitted on both
  203.       LANs.  A better choice would be to utilize a bridge which will only
  204.       forward packets that are involved with the application being
  205.       utilized, and reduce overall congestion on each LAN.  This is
  206.       especially important in an Ethernet network because LAN performance
  207.       will not degrade in a linear fashion with congestion - rather it
  208.       will fall off rapidly once a critical utilization level is reached,
  209.       and collisions become commonplace.
  210.  
  211.   c). To implement security in a network.  Some bridges can be programmed
  212.       to only allow specific network devices to forward data to other
  213.       LANs, thus providing network security.
  214.  
  215.   d). To expand a network beyond the physical limits imposed by the media
  216.       being used.  This is especially important if a LAN is to be
  217.       interconnected with another LAN located across town, or across the
  218.       country.  A remote bridge can forward LAN traffic over various types
  219.       of Wide Area Networks (to another bridge at the remote end), and
  220.       thus join two networks that are physically very far apart.  This
  221.       application will be discussed in some detail later.
  222.  
  223.  
  224. Depending upon the features supported by the bridge, circular paths and
  225. multiple paths can be supported.  By utilizing special algorithms in the
  226. bridge (the most common of which is the Spanning Tree Algorithm), a complex
  227. network can be created, and the bridges will "know" how to forward data
  228. between interconnected LANs (without causing circular repetition).
  229.  
  230.  
  231. 1.4  Routing
  232.  
  233. A Router operates on a similar concept to a bridge, but operates on Layer 3
  234. of the OSI Reference Model (the Network Layer).  Routers determine how to
  235. forward or filter data based on Layer 3 information.
  236.  
  237. Most LANs can support many types of protocols carried on the same media.
  238. For example, an IPX Ethernet based LAN might share the same LAN cable as
  239. devices utilizing TCP/IP over Ethernet.  As long as Layer 1 and Layer 2 are
  240. identical for both protocol stacks, they will co-exist on the same media
  241. (although they may not interact with each other).
  242.  
  243. Because routers operate on Layer 3 information, it is possible to make
  244. routing decisions based not only on the source and destination of the data,
  245. but also protocol.  Thus a multi-protocol router might be configured to
  246. only forward TCP/IP packets to a particular LAN, and filter all IPX
  247. packets.
  248.  
  249. Routers can support very complex network topologies which include redundant
  250. paths and path costing information.  A decision to route a packet in a
  251. particular fashion can be made based on WAN congestion, link speed and
  252. transmission cost.
  253.  
  254. Thus a router has more capabilities than a bridge, but is usually slower
  255. (because it must do more processing on the data), and much more costly.  In
  256. general, a router would be selected over a bridge if complex network
  257. topologies are required, or more than one protocol were being used on one
  258. or more of the interconnected networks.
  259.  
  260.  
  261. 1.5  The Brouter
  262.  
  263. In recent years, a new form of product known as a "brouter" has appeared.
  264. This is essentially a combination of a bridge and router.  Unknown
  265. protocols are handled as a bridge, while specific protocols are routed.
  266.  
  267. The term brouter is also commonly applied to bridge devices which use
  268. proprietary techniques to handle complex topologies, rather than the
  269. standards based Spanning Tree Algorithm.
  270.  
  271.  
  272. 1.6  Bridge Configuration
  273.  
  274. In the discussions above, it is apparent that enormous configuration tasks
  275. are required of a network manager, to configure the bridge to forward data
  276. for certain destinations, and filter data for the local LAN.
  277.  
  278. With the first generations of bridging devices, this was usually
  279. accomplished by setting up static tables that define which network devices
  280. are located on which LANs.  The bridge would then know when to forward and
  281. when to filter data for a particular destination.  This task is very time
  282. consuming, and subject to constant change as the LAN evolves.
  283.  
  284. A better strategy in recent years involves the introduction of the
  285. "learning" bridge.  A learning bridge starts out by broadcasting all LAN
  286. data to all interconnected LANs (similar to a repeater).  However, as
  287. responses are received, the bridge can "learn" where devices are located by
  288. examining the source address.  As it gathers this information, it
  289. automatically configures its internal tables.  In this fashion, the bridge
  290. actually dynamically re-configures itself as the LANs evolve.
  291.  
  292. A final word about bridges/routers is regarding network management.  Many
  293. bridges and routers provide facilities for configuration and monitoring
  294. (including the gathering of key LAN statistics).  Some devices provide this
  295. function through the use of a separate communications interface (such as
  296. RS-232), and some allow this function through the LAN itself.  An important
  297. recent development is the widespread acceptance of a network management
  298. protocol known as SNMP.  SNMP is a generic way of managing network devices,
  299. and supports various devices according to a Management Information Base (or
  300. MIB).  Manufacturers can produce MIBs with extended features for their own
  301. devices, which will theoretically operate with any SNMP package.
  302.  
  303.  
  304.  
  305. 2.   Applications
  306.  
  307. Most people become aware of LAN bridging due to a need to satisfy one of
  308. the following applications:
  309.  
  310.  
  311. 2.1  LAN Segmentation
  312.  
  313. If a LAN is exhibiting unacceptable performance because of some data
  314. intensive application, a bridge can be used to isolate users of the
  315. problematic program, greatly reducing network congestion for the remaining
  316. users.
  317.  
  318.  
  319. 2.2  LAN Extension
  320.  
  321. If a LAN must be extended beyond the length limits imposed by the
  322. particular media being utilized, a bridge can be used to extend the overall
  323. network length, by actually creating two distinct networks which are
  324. interconnected.  A bridge used in this application is known as a Local
  325. Bridge.
  326.  
  327.  
  328. 2.3  Remote Access to Other LANs
  329.  
  330. If an organization has LANs located some distance apart (e.g. across town),
  331. and requires access to data on more than one network, a Remote Bridge can
  332. be used to interconnect all LANs, and in essence, form one large network.
  333.  
  334. Before discussing this application in detail, it is wise to examine another
  335. approach, since remote bridging can become very expensive and exhibit
  336. performance limitations.
  337.  
  338.  
  339. 2.3.1     Screen Sharing Packages.
  340.  
  341. Perhaps the least costly solution is to utilize a "screen" sharing package
  342. such as PC Anywhere.  A remote user can utilize a dial up modem to
  343. communicate with a PC located on the other LAN, and essentially take
  344. control of it's keyboard and screen.  This allows the use of any
  345. applications located on the other network, and supports basic file transfer
  346. between networks.  The benefit to this approach is that only screen data is
  347. being transmitted over the modems, so even if the application manipulates
  348. hundreds of megabytes of data (a large database, for example), perhaps only
  349. a few thousand bytes of information are being sent over the modem.  In
  350. addition, low cost dial modems and normal telephone lines can be utilized.
  351.  
  352. The problem with remote control packages is that the PC being used on the
  353. remote LAN is unavailable while remote access is underway, and therefore
  354. might require additional PCs to be purchased to support the application.
  355. If more than one user wanted access between the two LANs at the same time,
  356. multiple PCs, modems and telephone lines would be required.  Finally, data
  357. on the remote LAN can only be accessed through application programs located
  358. on the remote LAN, which might not be acceptable depending upon the
  359. particular application.
  360.  
  361. A good candidate for remote control software might be financial accounting,
  362. since the data is generally only accessed through the accounting software
  363. program, and large amounts of data are manipulated by the application.
  364. Thus a remote control package would perform well (only transmitting screen
  365. changes), and local access to the raw data is not required.
  366.  
  367. If, however, access to the raw data is required, or large amounts of data
  368. are actually to be exchanged between the two LANs, a remote bridge is
  369. warranted.
  370.  
  371.  
  372. 2.3.2     Remote Bridging
  373.  
  374. A remote bridge contains one or more LAN ports, and one or more Wide Area
  375. Network (or WAN) ports.  LAN networks are connected to the LAN ports, and
  376. some form of wide area communication link is connected to the WAN ports.
  377. Data destined for another LAN is packaged in a form suitable to be carried
  378. over the WAN link, and then transmitted through the WAN to another bridge.
  379. Once received, the second bridge recovers the original LAN data from the
  380. WAN format, and places it on the other LAN at the remote site.  In this
  381. manner, networks are interconnected over long distances.
  382.  
  383. An important issue to note is that WAN links are almost always slower than
  384. LANs, and thus performance problems can occur.  In addition, since the
  385. bridge must buffer LAN data until it can be transmitted over the slower WAN
  386. link, it is possible for LAN data to be lost (the higher layer protocols
  387. should detect any errors and cause the information to be re-transmitted).
  388.  
  389. The physical interface to the WAN can come in many forms; V.24 (RS-232),
  390. X.21, V.35 and T1 to name a few.  WAN speeds generally range from 9600 baud
  391. to 1.544 MB/S (for T1) or 2.048 MB/S (for E1).  In some cases, a bridge
  392. will support more than one link between destinations, essentially combining
  393. the bandwidth of these WAN links (for example, two T1 links might be                                                 
  394. combined to provide 3.088 MB/S of bandwidth between two LANs).
  395.  
  396. Before selecting a bridging device, the user should first select a
  397. particular WAN transmission service.  There are many different WAN links
  398. available, from private microwave and satellite links, to telephone company
  399. dedicated data lines and switched services.  In general, there are three
  400. types of WAN links:
  401.  
  402. a).  Point to Point dedicated service.  A fixed bandwidth is always
  403.      available between two specific sites.   Speeds can range from 4800 bps
  404.      to T1 and higher.  High speed links are usually very expensive, but
  405.      multiplexer equipment can be used to mix LAN data with voice and video
  406.      signals, to better utilize available bandwidth (and help with cost
  407.      justification).  Monthly cost is usually fixed regardless of
  408.      utilization.
  409.  
  410. b).  Circuit switched services.  Bandwidth is established between sites as
  411.      required (similar to dialing a telephone).  Generally provides slower
  412.      speed service, at much lower cost than dedicated links.  A good
  413.      example is Switched 56, providing "dial up" connections with 56 KB/S
  414.      speeds.  These services are very useful if part-time LAN
  415.      interconnection is required.  For example, a massive file transfer
  416.      might occur every evening for 2 hours, not requiring interconnection
  417.      for the remaining hours in the day.  Most circuit switched billing is
  418.      primarily based on usage.
  419.  
  420. c).  Packet switched services.  Frame Relay is an emerging standard which
  421.      is ideal for LAN interconnection.  Frame Relay is similar to X.25
  422.      service, but without error correction facilities, thereby supporting
  423.      much higher speeds than X.25.  It is assumed that higher layer
  424.      protocols (layers 3 and 4) will recover from any lost or corrupted
  425.      data.  Frame Relay billing is based on actual packet usage.
  426.  
  427.  
  428. To select a particular type of WAN link, the user should examine
  429. application requirements (amount of data to be transmitted, performance
  430. considerations, time of day requirements), and perform a cost analysis on
  431. all types of links which support the application.
  432.  
  433. Once a decision is reached regarding the type of link, a particular WAN
  434. service can be selected, which will establish what type of physical
  435. interface is required.  An appropriate bridge can then be purchased which
  436. supports this interface.
  437.  
  438.  
  439.  
  440. 2.4  Enterprise Networking
  441.  
  442. A large company may develop many separate LANs, reaching sizes of several
  443. thousand nodes, and supporting many different protocol stacks (IPX, TCP/IP
  444. etc).  It may be desirable to interconnect all company wide LANs, and
  445. perhaps provide redundancy for mission critical network applications.
  446.  
  447. This form of network is very complex, and involves huge expenditures in
  448. equipment and transmission services.  Many such organizations have a
  449. private backbone network that carries data, voice and video signals.  In
  450. the near future, many companies may choose Frame Relay as a method of
  451. interconnecting LANs.  In any event, such networks generally make heavy use
  452. of router products, and are far beyond the scope of this discussion.
  453.  
  454.  
  455. 3.   Selecting a Bridge
  456.  
  457. When selecting a bridge, certain key features should be considered:
  458.  
  459. a).  Performance.  Bridges must perform two basic functions; the filtering
  460.      of packets, and forwarding of packets.  Performance is usually stated
  461.      separately for each function ("X" packets/second filtering, and "Y"
  462.      packets/second forwarding).  Ethernet defines a minimum packet size,
  463.      which limits the maximum speed of a 10 MB/S network to 14,800
  464.      packets/second.  Therefore, a wire-speed bridge will filter and
  465.      forward packets at up to 14,800 packets/second (it would appear almost
  466.      as a repeater in terms of performance).
  467.  
  468.      Be careful when evaluating performance figures.  Some bridge
  469.      manufacturers combine the performance of each LAN port, and state one
  470.      total number for the bridge.  Therefore, a four port LAN bridge may
  471.      claim performance of 24,000 packets/second, when in fact it supports
  472.      6,000 packets/second on each port.
  473.  
  474.      Some bridges also support data compression over WAN links, improving
  475.      overall throughput for remote applications.
  476.  
  477. b).  Availability of LAN interfaces.  It is desirable for a bridge to
  478.      support many types of LAN interfaces, so that mixed media networks are
  479.      possible.  Many bridges have integral transceivers, supporting either
  480.      Thinnet or UTP (10BaseT) directly.  Others will only support an AUI
  481.      interface, and require external transceivers.
  482.  
  483. c).  Availability of WAN interfaces.  As mentioned earlier, there are many
  484.      forms of WAN interfaces.  An ideal bridge would support all common
  485.      connection standards.  In the case of T1 equipment, a CSU/DSU may be
  486.      required, which may or may not be available as an integral component
  487.      to the bridge.
  488.  
  489. d).  Configuration and Management.  The bridge should support remote
  490.      configuration, so that field service is not required to effect network
  491.      changes.  In addition, some form of statistics collection is
  492.      desirable.  SNMP support is a definite plus, given the growing
  493.      prevalence of SNMP management packages.
  494.  
  495. e).  Intelligence.  It is a definite advantage if the bridge supports
  496.      "learning" of device locations.  Without a learning bridge, a network
  497.      manager must configure lengthy tables, and maintain the information as
  498.      the network changes.
  499.  
  500. f).  If a bridge is to be used in a complex topology (or redundant WAN
  501.      links are required), it should support the Spanning Tree Algorithm.
  502.  
  503.  
  504. 4.   Pricing
  505.  
  506. Pricing for bridging products vary dramatically.  At the lowest end of the
  507. market, there are local bridges available for under $2,000.  At the high
  508. end, some bridges cost between $10,000 and $20,000 for T1 applications.
  509. Most bridges today range between $2,000 and $10,000 in price.
  510.  
  511.  
  512. 5.   Summary
  513.  
  514. Bridges are devices which can be used to extend the total length of a LAN,
  515. interconnect LANs which are located far apart, and segment LANs to reduce
  516. congestion and improve security.
  517.  
  518. Bridges can be used in local applications (all LANs located on the same
  519. premises), or remote applications, to interconnect LANs anywhere in the
  520. world.
  521.  
  522. When selecting a remote bridge, the first consideration should be the
  523. selection of a WAN transmission vehicle, which depends upon the application
  524. being utilized on the LAN.  A suitable remote bridge can then be purchased
  525. which supports the selected WAN link, and provides the necessary network
  526. performance.
  527.  
  528. Care should be exercised in selecting a bridge, especially with regard to
  529. confusing performance figures.
  530.  
  531.  
  532. ===========================================================================
  533.  
  534.  
  535. ZyBel carries a product known as the 8230 Littlebridge, manufactured by
  536. Newbridge Networks Inc. (a leader in the T1 multiplexer market).  This
  537. bridge supports up to 2 LAN interfaces and 2 WAN interfaces.  LAN ports can
  538. be AUI, Thinnet or UTP (10BaseT).  WAN support includes V.24, X.21, V.35,
  539. T1 (with or without integral CSU), and E1.  The product is a learning
  540. bridge, includes the Spanning Tree Algorithm, and supports SNMP management
  541. (it comes complete with a basic SNMP package).  The Littlebridge features
  542. full wire speed filtering AND forwarding on all ports.  List price for the
  543. product ranges from about $2,200 for a local bridge to $4,400 for a T1
  544. equipped box.
  545.  
  546. For further information, please feel free to contact the author at the
  547. address listed below.  I sincerely hope the above information has proved to
  548. be useful.
  549.  
  550.  
  551.      Warren D. Belkin
  552.      ZyBel MicroSystems Inc.
  553.      PO Box 1284
  554.      Weston, CT  06883-0284
  555.  
  556.      (203)-226-8800
  557.      (203)-226-8851 (FAX)
  558.  
  559.      Compuserve: 70571,3651
  560.  
  561.  
  562.